home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000240_news@columbia.edu _Fri Aug 23 20:39:38 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id UAA17936 for <kermit.misc@watsun.cc.columbia.edu>; Fri, 23 Aug 1996 20:39:34 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id UAA02392 for kermit.misc@watsun; Fri, 23 Aug 1996 20:39:33 -0400 (EDT)
  4. Path: news.columbia.edu!panix!news1.erols.com!hunter.premier.net!news-res.gsl.net!news.gsl.net!nntp.coast.net!chi-news.cic.net!newspump.sol.net!nntp04.primenet.com!nntp.primenet.com!mr.net!news.sgi.com!enews.sgi.com!news.mathworks.com!newsfeed.internetmci.com!in3.uu.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: status line in MS-Kermit 3.14 VT320 emulator
  8. Message-ID: <1996Aug23.172921.84166@cc.usu.edu>
  9. Date: 23 Aug 96 17:29:21 MDT
  10. References: <4vh491$mbm@news.pinc.com>
  11. Organization: Utah State University
  12. Lines: 59
  13.  
  14. In article <4vh491$mbm@news.pinc.com>, jnemeth@cue.bc.ca (John Nemeth) writes:
  15. >      I just upgraded to MS-Kermit 3.14 (I know I'm a little behind the
  16. > times).  I use the VT320 emulator mode.  I'm useing a monochrome video
  17. > card right now.  I have several programs that print things on the
  18. > status line.  They worked find with 3.13, but now the stuff they print
  19. > shows up on the last line of the terminal (the line above the
  20. > status/mode line).  I checked all the docs and can't seem to find
  21. > anything about this problem.
  22. >      The only lines in my mskermit.ini that affect the terminal are...
  23. > set terminal wrap-lines on
  24. > set terminal rollback on
  25. > set terminal character-set ascii
  26. > set terminal bell visual
  27. > set terminal APC-macro off
  28. > set terminal expanded-memory on
  29. >      The termcap entry I'm using is (all the stuff for the status line
  30. > is on the second last line)...
  31. > km|kermpc|MS-Kermit, VT320 Emulation with status line.:\
  32. >     :al=\E[L:bs:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:co#80:\
  33. >     :cr=^M:cs=\E[%i%d;%dr:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:im=\E[4h:\
  34. >     :is=\E[m\E[?1;?2;?7h\E[?5;4;20l\E[0q\E=:kb=^?:kd=\EOB:ke=\E>:\
  35. >     :kl=\EOD:kr=\EOC:ks=\E=:ku=\EOA:le=^H:li#24:mi:ms:nd=\E[C:pt:\
  36. >     :rs=\E[m\E[?1;?2;?7h\E[?5;4;20l\E[0q\E=:se=\E[m:sf=2*^J:so=\E[1m:\
  37. >     :sr=2*\EM:ue=\E[m:up=\E[A:us=\E[4m:\
  38. >     :vb=\E[?5h\200\200\200\200\200\200\200\200\200\200\200\E[?5l:\
  39. >     :ds=:es:fs=\E8:hs:ts=\E7\E[?6h\E[25;%dH\E[2K:\
  40.                    ^^^^^^^^^^^^^^^^^^^^^^^^^^This is yours, I presume
  41. >     :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:NF:LF:
  42. >     Is this a known problem with 3.14?  Is there something wrong with
  43. > my termcap entry (I hand crafted it many years ago?.  Is there a
  44. > -- 
  45. > John Nemeth                                                  jnemeth@cue.bc.ca
  46. > System Administrator
  47. > CUEBC, TC, VIFA, access                                   Opinions are my own.
  48. -----------------
  49.     The proper and official way is like this, from distribution file
  50. msvibm.vt (and DEC's VT320 docs). MSK 3.15 beta has removed the older
  51. method of directly addressing line "25" (others please take note).
  52.  
  53.  CSI Ps $ }    DECSASD        Select active status display
  54.     Ps = 0 select main display
  55.     Ps = 1 select status line
  56.     Moves cursor to selected display area. This command will be ignored
  57.     unless the status line has been enabled by CSI 2 $ ~. When the status
  58.     line has been selected cursor remains there until the main display is
  59.     reselected by CSI 0 $ }.
  60.  
  61.  CSI Ps $ ~    DECSSDT        Select Status Line Type
  62.             Ps    meaning
  63.             0     no status line (empty)
  64.             1    indicator line (locally owned, Kermit default)
  65.             2    host-writable line
  66.  
  67.     Joe D.